home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Hardware / Mac OS USB DDK / Mac OS USB DDK 1.4.1 / Examples / USBSampleStorageDriver / StorageClassDriver / StorageClassBulkProtocol.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-25  |  522 b   |  21 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        StorageClassBulkProtocol.h
  3.  
  4.     Contains:    All code specific to handling the Bulk Only Protocol
  5.  
  6.     Version:    1.3
  7.  
  8.     Copyright:    © 1998-1999 by Apple Computer, Inc., all rights reserved.
  9. */
  10.  
  11. #ifndef __STORAGECLASSBULKPROTOCOL__
  12. #define __STORAGECLASSBULKPROTOCOL__
  13.  
  14. #include "StorageClassDriver.h"
  15.  
  16. #define kProtocolBulkOnly    0x50
  17.  
  18. extern OSStatus     StorageClassBulkOnlyAbortCommand( StorageExecuteCommandPBPtr cmdPBPtr );
  19. extern OSStatus     StorageClassBulkOnlyExecuteCommand( StorageExecuteCommandPBPtr cmdPBPtr );
  20.  
  21. #endif